This is an example app to demonstrate how Julia code for DiffEq-type simulations can be compiled for use on the web. This app is built with the following:
StaticCompiler compiles a Julia model to WebAssembly. This uses GPUCompiler which does most of the work. StaticTools helps with this static compilation.
Here is the model with initial conditions that we'll compile. The important part is using DiffEqGPU to set up an integrator. Because it is designed to run on a GPU, it is natural for static compilation. It doesn't allocate or use features from libjulia.